home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
tools
/
czesc_1
/
bootute_2
/
install_iconx
< prev
next >
Wrap
AmigaDOS Script File
|
1995-05-25
|
2KB
|
86 lines
.key install_dir
.bra {
.ket }
; This is an AmigaDOS script that installs BootUte 2.3.
;
; Script written by Paul Toyne.
;
; ©1995 TLS Software.
;
; Usage : Install_IconX <Place to install the BootUte directory>
Failat 100
Echo "Welcome to BootUte's installation script"
Echo " "
Echo "Written by Paul Toyne"
Echo " "
Echo "©1995 TLS Software"
Echo ""
If "{install_dir}" EQ ""
Echo "Usage : Install_IconX <directory>"
Echo " "
Echo "Make sure the <directory> ends in a '/' or a ':'"
Skip END
EndIf
Version >NIL: VERSION 37
If WARN
Echo "Sorry BootUte only works on Kickstart 2.0 or above"
Echo "I suggest you upgrade immediately"
Skip END
EndIf
If EXISTS C:BootUte
Echo "Deleting your previous version of BootUte"
Delete >NIL: C:BootUte
EndIf
Delete >NIL: ENV:BootUte
Delete >NIL: ENVARC:BootUte
If NOT EXISTS "{install_dir}BootUte"
Makedir >NIL: "{install_dir}BootUte"
Copy >NIL: Docs.info "{install_dir}BootUte.info"
EndIf
If NOT EXISTS "{install_dir}BootUte/Docs"
Makedir >NIL: "{install_dir}BootUte/Docs"
EndIf
Echo "Copying BootUte's files"
Copy >NIL: BootUte_2 "{install_dir}BootUte/"
Copy >NIL: BootUte_2.info "{install_dir}BootUte/"
Copy >NIL: Docs.info "{install_dir}BootUte/"
Copy >NIL: Docs/BootUte_2.guide "{install_dir}BootUte/Docs/"
Copy >NIL: Docs/BootUte_2.guide.info "{install_dir}BootUte/Docs/"
Copy >NIL: Docs/BootUte_2.doc "{install_dir}BootUte/Docs/"
Copy >NIL: Docs/BootUte_2.doc.info "{install_dir}BootUte/Docs/"
Copy >NIL: Docs/Register_BU.doc "{install_dir}BootUte/Docs/"
Copy >NIL: Docs/Register_BU.doc.info "{install_dir}BootUte/Docs/"
If NOT EXISTS "ENV:TLS"
Makedir >NIL: ENV:TLS
EndIf
If NOT EXISTS "ENV:TLS/BootUte"
Makedir >NIL: ENV:TLS/BootUte
EndIf
If NOT EXISTS "ENVARC:TLS"
Makedir >NIL: ENVARC:TLS
EndIf
If NOT EXISTS "ENVARC:TLS/BootUte"
Makedir >NIL: ENVARC:TLS/BootUte
EndIf
Echo " "
Echo "BootUte 2.1 AUI has been installed in '{install_dir}BootUte/'"
Lab END